projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2ef31c1
)
(PC-do-completion): Replace first call to try-completion with new
author
Glenn Morris
<rgm@gnu.org>
Fri, 9 Mar 2007 09:00:59 +0000
(09:00 +0000)
committer
Glenn Morris
<rgm@gnu.org>
Fri, 9 Mar 2007 09:00:59 +0000
(09:00 +0000)
PC-try-completion.
lisp/complete.el
patch
|
blob
|
history
diff --git
a/lisp/complete.el
b/lisp/complete.el
index a5f3eea955de2d447958088b38fbcc22524c4cb4..104f37894035e23658f21c67cde1ff5840a6bb74 100644
(file)
--- a/
lisp/complete.el
+++ b/
lisp/complete.el
@@
-436,7
+436,7
@@
of `minibuffer-completion-table' and the minibuffer contents.")
;; If completion-ignore-case is non-nil, insert the
;; completion string since that may have a different case.
(when completion-ignore-case
- (setq str (try-completion str table pred))
+ (setq str (
PC-
try-completion str table pred))
(delete-region beg end)
(insert str))
'complete)